#ifndef cathlibcpp_iostream_H
#define cathlibcpp_iostream_H

// File:       iostream.h
// Author:     (c) Miles Sabin, 1997
// Purpose:    approximation to ANSI C++ iostream header


#ifndef cathlibcpp_config_H
#include "config.h"
#endif

#ifndef cathlibcpp_istream_H
#include "istream.h"
#endif

#ifndef cathlibcpp_ostream_H
#include "ostream.h"
#endif


extern istream cin;
extern ostream cout;
extern ostream cerr;
extern ostream clog;

#endif
